home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 40
/
Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso
/
Aminet
/
misc
/
emu
/
ATUtilities.lha
/
ATUtilities
/
BASIC
/
INT16.BAS
< prev
next >
Wrap
BASIC Source File
|
2000-09-26
|
154b
|
11 lines
$include "regnames.inc"
do
reg %ax,0
call interrupt &H16
ah = int(reg(%ax)/256)
al = int(reg(%ax) mod 256)
?al,ah
loop until (al=13)
end